home *** CD-ROM | disk | FTP | other *** search
/ The Magic of Interactive Entertainment / The Magic of Interactive Entertainment - Disc 1.iso / vistapro / install.bat next >
DOS Batch File  |  1994-10-02  |  4KB  |  76 lines

  1. @ECHO OFF
  2. REM Installation program for "Vistapro 1"
  3. REM -----------------------------------------------------------------
  4. IF .%1==. GOTO NEED_DRIVE
  5. IF NOT EXIST %1\NUL GOTO NEED_DRIVE
  6. CLS
  7. ECHO  
  8. ECHO ╔════════════════════════════════════════════════════════════╗
  9. ECHO ║  Vistapro 1                             DISK INSTALLATION  ║
  10. ECHO ║                                                            ║
  11. ECHO ║  You have chosen to install this software to your %1       ║
  12. ECHO ║  hard drive. The files will take up about 3 MB of space.   ║
  13. ECHO ║                                                            ║
  14. ECHO ║                                                            ║
  15. ECHO ║  If this is NOT what you want to do, press the Ctrl + C    ║
  16. ECHO ║  keys to end this batch program.                           ║
  17. ECHO ║                                                            ║
  18. ECHO ╚════════════════════════════════════════════════════════════╝
  19. ECHO  
  20. ECHO  
  21. ECHO  
  22. ECHO  
  23. ECHO  
  24. PAUSE Paused... press any key to continue the installation
  25. CLS
  26. ECHO ┌────────────────────────────────────────────────────────────────┐
  27. ECHO │ Vistapro 1 will now be copied copied to your %1 hard drive.    │
  28. ECHO │ You'll see a message on your screen telling you when the       │
  29. ECHO │ installation is finished.                                      │
  30. ECHO └────────────────────────────────────────────────────────────────┘
  31. ECHO  
  32. MD %1\VISTAPRO
  33. CD \VISTAPRO
  34. VISTA1.EXE *.* %1\VISTAPRO\
  35. CLS
  36. ECHO 
  37. ECHO  
  38. ECHO ╔═════════════════════════════════════════════════════════════════════════╗
  39. ECHO ║                                                                         ║
  40. ECHO ║ The installation of Vistapro 1 is finished!                             ║
  41. ECHO ║                                                                         ║
  42. ECHO ║ You'll find the files in the %1\VISTAPRO directory of your hard drive.  ║
  43. ECHO ║                                                                         ║
  44. ECHO ║ Change to this directory, type MANUAL and press Enter to view the       ║
  45. ECHO ║ on-line manual.                                                         ║
  46. ECHO ║                                                                         ║
  47. ECHO ║ NOTE: Your mouse driver must be loaded before you start Vistapro.       ║
  48. ECHO ║                                                                         ║
  49. ECHO ╚═════════════════════════════════════════════════════════════════════════╝
  50. ECHO  
  51. ECHO  
  52. ECHO  
  53. PAUSE Press any key to continue...
  54. GOTO FINISHED
  55. :NEED_DRIVE
  56. CLS
  57. ECHO 
  58. ECHO  
  59. ECHO ┌─────────────────────────────────────────────────────────────┐
  60. ECHO │ You have not specified the correct name of your hard drive. │
  61. ECHO │ For the installation to work, you need to type              │
  62. ECHO │                                                             │
  63. ECHO │ INSTALL drive:                                              │
  64. ECHO │                                                             │
  65. ECHO │ (drive: is the drive letter of your hard drive)             │
  66. ECHO │                                                             │
  67. ECHO │ For example, to install to your C: drive...                 │
  68. ECHO │                                                             │
  69. ECHO │ INSTALL C:                                                  │
  70. ECHO │                                                             │
  71. ECHO └─────────────────────────────────────────────────────────────┘
  72. ECHO  
  73. ECHO  
  74. ECHO  
  75. :FINISHED
  76.